home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / gzip.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  14KB  |  509 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """Functions that read and write gzipped files.
  5.  
  6. The user of the file doesn't have to worry about the compression,
  7. but random access is not allowed."""
  8. import struct
  9. import sys
  10. import time
  11. import zlib
  12. import __builtin__
  13. __all__ = [
  14.     'GzipFile',
  15.     'open']
  16. (FTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT) = (1, 2, 4, 8, 16)
  17. (READ, WRITE) = (1, 2)
  18.  
  19. def U32(i):
  20.     """Return i as an unsigned integer, assuming it fits in 32 bits.
  21.  
  22.     If it's >= 2GB when viewed as a 32-bit unsigned int, return a long.
  23.     """
  24.     if i < 0:
  25.         i += 0x1L << 32
  26.     
  27.     return i
  28.  
  29.  
  30. def LOWU32(i):
  31.     '''Return the low-order 32 bits of an int, as a non-negative int.'''
  32.     return i & 0xFFFFFFFFL
  33.  
  34.  
  35. def write32(output, value):
  36.     output.write(struct.pack('<l', value))
  37.  
  38.  
  39. def write32u(output, value):
  40.     output.write(struct.pack('<L', value))
  41.  
  42.  
  43. def read32(input):
  44.     return struct.unpack('<l', input.read(4))[0]
  45.  
  46.  
  47. def open(filename, mode = 'rb', compresslevel = 9):
  48.     """Shorthand for GzipFile(filename, mode, compresslevel).
  49.  
  50.     The filename argument is required; mode defaults to 'rb'
  51.     and compresslevel defaults to 9.
  52.  
  53.     """
  54.     return GzipFile(filename, mode, compresslevel)
  55.  
  56.  
  57. class GzipFile:
  58.     '''The GzipFile class simulates most of the methods of a file object with
  59.     the exception of the readinto() and truncate() methods.
  60.  
  61.     '''
  62.     myfileobj = None
  63.     max_read_chunk = 10 * 1024 * 1024
  64.     
  65.     def __init__(self, filename = None, mode = None, compresslevel = 9, fileobj = None):
  66.         """Constructor for the GzipFile class.
  67.  
  68.         At least one of fileobj and filename must be given a
  69.         non-trivial value.
  70.  
  71.         The new class instance is based on fileobj, which can be a regular
  72.         file, a StringIO object, or any other object which simulates a file.
  73.         It defaults to None, in which case filename is opened to provide
  74.         a file object.
  75.  
  76.         When fileobj is not None, the filename argument is only used to be
  77.         included in the gzip file header, which may includes the original
  78.         filename of the uncompressed file.  It defaults to the filename of
  79.         fileobj, if discernible; otherwise, it defaults to the empty string,
  80.         and in this case the original filename is not included in the header.
  81.  
  82.         The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', or 'wb',
  83.         depending on whether the file will be read or written.  The default
  84.         is the mode of fileobj if discernible; otherwise, the default is 'rb'.
  85.         Be aware that only the 'rb', 'ab', and 'wb' values should be used
  86.         for cross-platform portability.
  87.  
  88.         The compresslevel argument is an integer from 1 to 9 controlling the
  89.         level of compression; 1 is fastest and produces the least compression,
  90.         and 9 is slowest and produces the most compression.  The default is 9.
  91.  
  92.         """
  93.         if mode and 'b' not in mode:
  94.             mode += 'b'
  95.         
  96.         if fileobj is None:
  97.             if not mode:
  98.                 pass
  99.             fileobj = self.myfileobj = __builtin__.open(filename, 'rb')
  100.         
  101.         if filename is None:
  102.             if hasattr(fileobj, 'name'):
  103.                 filename = fileobj.name
  104.             else:
  105.                 filename = ''
  106.         
  107.         if mode is None:
  108.             if hasattr(fileobj, 'mode'):
  109.                 mode = fileobj.mode
  110.             else:
  111.                 mode = 'rb'
  112.         
  113.         if mode[0:1] == 'r':
  114.             self.mode = READ
  115.             self._new_member = True
  116.             self.extrabuf = ''
  117.             self.extrasize = 0
  118.             self.filename = filename
  119.         elif mode[0:1] == 'w' or mode[0:1] == 'a':
  120.             self.mode = WRITE
  121.             self._init_write(filename)
  122.             self.compress = zlib.compressobj(compresslevel, zlib.DEFLATED, -(zlib.MAX_WBITS), zlib.DEF_MEM_LEVEL, 0)
  123.         else:
  124.             raise IOError, 'Mode ' + mode + ' not supported'
  125.         self.fileobj = fileobj
  126.         self.offset = 0
  127.         if self.mode == WRITE:
  128.             self._write_gzip_header()
  129.         
  130.  
  131.     
  132.     def __repr__(self):
  133.         s = repr(self.fileobj)
  134.         return '<gzip ' + s[1:-1] + ' ' + hex(id(self)) + '>'
  135.  
  136.     
  137.     def _init_write(self, filename):
  138.         if filename[-3:] != '.gz':
  139.             filename = filename + '.gz'
  140.         
  141.         self.filename = filename
  142.         self.crc = zlib.crc32('')
  143.         self.size = 0
  144.         self.writebuf = []
  145.         self.bufsize = 0
  146.  
  147.     
  148.     def _write_gzip_header(self):
  149.         self.fileobj.write('\x1f\x8b')
  150.         self.fileobj.write('\x08')
  151.         fname = self.filename[:-3]
  152.         flags = 0
  153.         if fname:
  154.             flags = FNAME
  155.         
  156.         self.fileobj.write(chr(flags))
  157.         write32u(self.fileobj, long(time.time()))
  158.         self.fileobj.write('\x02')
  159.         self.fileobj.write('\xff')
  160.         if fname:
  161.             self.fileobj.write(fname + '\x00')
  162.         
  163.  
  164.     
  165.     def _init_read(self):
  166.         self.crc = zlib.crc32('')
  167.         self.size = 0
  168.  
  169.     
  170.     def _read_gzip_header(self):
  171.         magic = self.fileobj.read(2)
  172.         if magic != '\x1f\x8b':
  173.             raise IOError, 'Not a gzipped file'
  174.         
  175.         method = ord(self.fileobj.read(1))
  176.         if method != 8:
  177.             raise IOError, 'Unknown compression method'
  178.         
  179.         flag = ord(self.fileobj.read(1))
  180.         self.fileobj.read(6)
  181.         if flag & FEXTRA:
  182.             xlen = ord(self.fileobj.read(1))
  183.             xlen = xlen + 256 * ord(self.fileobj.read(1))
  184.             self.fileobj.read(xlen)
  185.         
  186.         if flag & FNAME:
  187.             while True:
  188.                 s = self.fileobj.read(1)
  189.                 if not s or s == '\x00':
  190.                     break
  191.                     continue
  192.         
  193.         if flag & FCOMMENT:
  194.             while True:
  195.                 s = self.fileobj.read(1)
  196.                 if not s or s == '\x00':
  197.                     break
  198.                     continue
  199.         
  200.         if flag & FHCRC:
  201.             self.fileobj.read(2)
  202.         
  203.  
  204.     
  205.     def write(self, data):
  206.         if self.mode != WRITE:
  207.             import errno as errno
  208.             raise IOError(errno.EBADF, 'write() on read-only GzipFile object')
  209.         
  210.         if self.fileobj is None:
  211.             raise ValueError, 'write() on closed GzipFile object'
  212.         
  213.         if len(data) > 0:
  214.             self.size = self.size + len(data)
  215.             self.crc = zlib.crc32(data, self.crc)
  216.             self.fileobj.write(self.compress.compress(data))
  217.             self.offset += len(data)
  218.         
  219.  
  220.     
  221.     def read(self, size = -1):
  222.         if self.mode != READ:
  223.             import errno
  224.             raise IOError(errno.EBADF, 'read() on write-only GzipFile object')
  225.         
  226.         if self.extrasize <= 0 and self.fileobj is None:
  227.             return ''
  228.         
  229.         readsize = 1024
  230.         if size < 0:
  231.             
  232.             try:
  233.                 while True:
  234.                     self._read(readsize)
  235.                     readsize = min(self.max_read_chunk, readsize * 2)
  236.             except EOFError:
  237.                 size = self.extrasize
  238.             except:
  239.                 None<EXCEPTION MATCH>EOFError
  240.             
  241.  
  242.         None<EXCEPTION MATCH>EOFError
  243.         
  244.         try:
  245.             while size > self.extrasize:
  246.                 self._read(readsize)
  247.                 readsize = min(self.max_read_chunk, readsize * 2)
  248.         except EOFError:
  249.             if size > self.extrasize:
  250.                 size = self.extrasize
  251.             
  252.         except:
  253.             size > self.extrasize
  254.  
  255.         chunk = self.extrabuf[:size]
  256.         self.extrabuf = self.extrabuf[size:]
  257.         self.extrasize = self.extrasize - size
  258.         self.offset += size
  259.         return chunk
  260.  
  261.     
  262.     def _unread(self, buf):
  263.         self.extrabuf = buf + self.extrabuf
  264.         self.extrasize = len(buf) + self.extrasize
  265.         self.offset -= len(buf)
  266.  
  267.     
  268.     def _read(self, size = 1024):
  269.         if self.fileobj is None:
  270.             raise EOFError, 'Reached EOF'
  271.         
  272.         if self._new_member:
  273.             pos = self.fileobj.tell()
  274.             self.fileobj.seek(0, 2)
  275.             if pos == self.fileobj.tell():
  276.                 raise EOFError, 'Reached EOF'
  277.             else:
  278.                 self.fileobj.seek(pos)
  279.             self._init_read()
  280.             self._read_gzip_header()
  281.             self.decompress = zlib.decompressobj(-(zlib.MAX_WBITS))
  282.             self._new_member = False
  283.         
  284.         buf = self.fileobj.read(size)
  285.         if buf == '':
  286.             uncompress = self.decompress.flush()
  287.             self._read_eof()
  288.             self._add_read_data(uncompress)
  289.             raise EOFError, 'Reached EOF'
  290.         
  291.         uncompress = self.decompress.decompress(buf)
  292.         self._add_read_data(uncompress)
  293.         if self.decompress.unused_data != '':
  294.             self.fileobj.seek(-len(self.decompress.unused_data) + 8, 1)
  295.             self._read_eof()
  296.             self._new_member = True
  297.         
  298.  
  299.     
  300.     def _add_read_data(self, data):
  301.         self.crc = zlib.crc32(data, self.crc)
  302.         self.extrabuf = self.extrabuf + data
  303.         self.extrasize = self.extrasize + len(data)
  304.         self.size = self.size + len(data)
  305.  
  306.     
  307.     def _read_eof(self):
  308.         self.fileobj.seek(-8, 1)
  309.         crc32 = read32(self.fileobj)
  310.         isize = U32(read32(self.fileobj))
  311.         if U32(crc32) != U32(self.crc):
  312.             raise IOError, 'CRC check failed'
  313.         elif isize != LOWU32(self.size):
  314.             raise IOError, 'Incorrect length of data produced'
  315.         
  316.  
  317.     
  318.     def close(self):
  319.         if self.mode == WRITE:
  320.             self.fileobj.write(self.compress.flush())
  321.             write32(self.fileobj, self.crc)
  322.             write32u(self.fileobj, LOWU32(self.size))
  323.             self.fileobj = None
  324.         elif self.mode == READ:
  325.             self.fileobj = None
  326.         
  327.         if self.myfileobj:
  328.             self.myfileobj.close()
  329.             self.myfileobj = None
  330.         
  331.  
  332.     
  333.     def __del__(self):
  334.         
  335.         try:
  336.             if self.myfileobj is None and self.fileobj is None:
  337.                 return None
  338.         except AttributeError:
  339.             return None
  340.  
  341.         self.close()
  342.  
  343.     
  344.     def flush(self):
  345.         self.fileobj.flush()
  346.  
  347.     
  348.     def fileno(self):
  349.         """Invoke the underlying file object's fileno() method.
  350.  
  351.         This will raise AttributeError if the underlying file object
  352.         doesn't support fileno().
  353.         """
  354.         return self.fileobj.fileno()
  355.  
  356.     
  357.     def isatty(self):
  358.         return False
  359.  
  360.     
  361.     def tell(self):
  362.         return self.offset
  363.  
  364.     
  365.     def rewind(self):
  366.         '''Return the uncompressed stream file position indicator to the
  367.         beginning of the file'''
  368.         if self.mode != READ:
  369.             raise IOError("Can't rewind in write mode")
  370.         
  371.         self.fileobj.seek(0)
  372.         self._new_member = True
  373.         self.extrabuf = ''
  374.         self.extrasize = 0
  375.         self.offset = 0
  376.  
  377.     
  378.     def seek(self, offset):
  379.         if self.mode == WRITE:
  380.             if offset < self.offset:
  381.                 raise IOError('Negative seek in write mode')
  382.             
  383.             count = offset - self.offset
  384.             for i in range(count // 1024):
  385.                 self.write(1024 * '\x00')
  386.             
  387.             self.write((count % 1024) * '\x00')
  388.         elif self.mode == READ:
  389.             if offset < self.offset:
  390.                 self.rewind()
  391.             
  392.             count = offset - self.offset
  393.             for i in range(count // 1024):
  394.                 self.read(1024)
  395.             
  396.             self.read(count % 1024)
  397.         
  398.  
  399.     
  400.     def readline(self, size = -1):
  401.         if size < 0:
  402.             size = sys.maxint
  403.         
  404.         bufs = []
  405.         readsize = min(100, size)
  406.         while True:
  407.             if size == 0:
  408.                 return ''.join(bufs)
  409.             
  410.             c = self.read(readsize)
  411.             i = c.find('\n')
  412.             if size is not None:
  413.                 if i == -1 and len(c) > size:
  414.                     i = size - 1
  415.                 elif size <= i:
  416.                     i = size - 1
  417.                 
  418.             
  419.             if i >= 0 or c == '':
  420.                 bufs.append(c[:i + 1])
  421.                 self._unread(c[i + 1:])
  422.                 return ''.join(bufs)
  423.             
  424.             bufs.append(c)
  425.             size = size - len(c)
  426.             readsize = min(size, readsize * 2)
  427.  
  428.     
  429.     def readlines(self, sizehint = 0):
  430.         if sizehint <= 0:
  431.             sizehint = sys.maxint
  432.         
  433.         L = []
  434.         while sizehint > 0:
  435.             line = self.readline()
  436.             if line == '':
  437.                 break
  438.             
  439.             L.append(line)
  440.             sizehint = sizehint - len(line)
  441.         return L
  442.  
  443.     
  444.     def writelines(self, L):
  445.         for line in L:
  446.             self.write(line)
  447.         
  448.  
  449.     
  450.     def __iter__(self):
  451.         return self
  452.  
  453.     
  454.     def next(self):
  455.         line = self.readline()
  456.         if line:
  457.             return line
  458.         else:
  459.             raise StopIteration
  460.  
  461.  
  462.  
  463. def _test():
  464.     args = sys.argv[1:]
  465.     if args:
  466.         pass
  467.     decompress = args[0] == '-d'
  468.     if decompress:
  469.         args = args[1:]
  470.     
  471.     if not args:
  472.         args = [
  473.             '-']
  474.     
  475.     for arg in args:
  476.         if decompress:
  477.             if arg == '-':
  478.                 f = GzipFile(filename = '', mode = 'rb', fileobj = sys.stdin)
  479.                 g = sys.stdout
  480.             elif arg[-3:] != '.gz':
  481.                 print "filename doesn't end in .gz:", repr(arg)
  482.                 continue
  483.             
  484.             f = open(arg, 'rb')
  485.             g = __builtin__.open(arg[:-3], 'wb')
  486.         elif arg == '-':
  487.             f = sys.stdin
  488.             g = GzipFile(filename = '', mode = 'wb', fileobj = sys.stdout)
  489.         else:
  490.             f = __builtin__.open(arg, 'rb')
  491.             g = open(arg + '.gz', 'wb')
  492.         while True:
  493.             chunk = f.read(1024)
  494.             if not chunk:
  495.                 break
  496.             
  497.             g.write(chunk)
  498.         if g is not sys.stdout:
  499.             g.close()
  500.         
  501.         if f is not sys.stdin:
  502.             f.close()
  503.             continue
  504.     
  505.  
  506. if __name__ == '__main__':
  507.     _test()
  508.  
  509.